home *** CD-ROM | disk | FTP | other *** search
/ BBS in a Box 7 / BBS in a Box - Macintosh - Volume VII (BBS in a Box) (January 1993).iso / Files / Prog / T / TC Prog Guide.cpt / picture ƒ / ringpict.h < prev    next >
Text File  |  1991-02-18  |  639b  |  34 lines

  1. /*
  2. *    FILE:        ringpict.h
  3. *    AUTHOR:        R. Gonzalez
  4. *    CREATED:    November 7, 1990
  5. *
  6. *    Defines sample pict application class.
  7. */
  8.  
  9. # ifndef    ringpict_h
  10. # define    ringpict_h
  11.  
  12. # include    "pict.h"
  13. # include    "camera.h"
  14. # include    "trans.h"
  15. # include    "segment.h"
  16.  
  17. /******************************************************************
  18. *   ring_pict application
  19. ******************************************************************/
  20. struct    Ring_Pict:Generic_Pict
  21. {
  22.     Projector        *projector1,
  23.                     *projector2,
  24.                     *projector3;
  25.     Camera            *camera1,
  26.                     *camera2;
  27.     Segment            *segment;
  28.             
  29.     boolean            init(void);
  30.     void            run(void);
  31.     boolean            destroy(void);
  32. };
  33.  
  34. # endif